LEN

Syntax: LEN (string$)
Location: QL ROM

The function LEN returns the number of characters contained in the given string expression.

Example:
x=100: PRINT LEN(x)   Returns 3   
PRINT LEN ('A string') Returns 8.   

CROSS-REFERENCE:
FILL$ returns a string of a specified length.
DIMN returns important information about arrays.
